home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Headers / mach / exc.h < prev    next >
C/C++ Source or Header  |  1995-02-04  |  415b  |  27 lines

  1. #ifndef    _exc
  2. #define    _exc
  3.  
  4. /* Module exc */
  5.  
  6. #include <mach/kern_return.h>
  7. #include <mach/port.h>
  8. #include <mach/message.h>
  9.  
  10. #ifndef    mig_external
  11. #define mig_external extern
  12. #endif
  13.  
  14. #include <mach/std_types.h>
  15.  
  16. /* Routine exception_raise */
  17. mig_external kern_return_t exception_raise (
  18.     port_t exception_port,
  19.     port_t clear_port,
  20.     port_t thread,
  21.     port_t task,
  22.     int exception,
  23.     int code,
  24.     int subcode);
  25.  
  26. #endif    _exc
  27.